Native calendar event handling - database

Can I open my custom developed form [instead of native one] when user opens any pre-created appointment/event from calendar view ?
Can this be achieved ? if yes, how ?
Thanks in advance.

As far as I can tell, there is no way to get that particular type of notification from the calendar. You can use a PIMListListener to be notified of when an appointment/event is added, removed, or updated, but not when it is opened. Once it is in the calendar, then calendar handles the UI for it.

Related

Issue when navigating from one form to another when second form has Picker control

In my App, While navigating from one form to another, I found an issue with both android and IOS debug build. This will happen only when second form contains any type of Picker control. I have added logic to navigating to second form on click of a button on the first form. So now when I click the button, Picker control of the second form open up on first form instead of navigating to second form. Second form will appear only after I made the selection on Picker Control. This issue is happening on bother android and IOS builds. Please advise if any one encounter similar issue with recent debug builds.
This happens only when Picker is first control on the form.
Code used for Picker:
Picker firstAppForm = new Picker();
String[] options = {"Tabbed Menu", "My Schedule "};
firstAppForm.setStrings(options);
firstAppForm.setUIID("TextField");
firstAppForm.setAutoSizeMode(true);
I tried to reproduce it and wasn't able to but I did run into a null pointer exception related to the native picker which might be the underlying cause of this.
I've pushed out a fix that should be available now so if you send a new build this will hopefully be resolved.
as a reference, I've published three videos to help illustrate the current problems I'm facing and probably #Chris L as well, maybe this aid in finding out the root of the problem. The links can be found as a comment to the initial publication.

How to draw a calendar, populated with Google Calendar Events?

I googled all over but couldn't find any component that will draw and populated calendar with google calendar events using AngularJS.
I found ui-calendar (http://angular-ui.github.io/ui-calendar/) which is based on fullCalendar (https://fullcalendar.io/)
but it is not working, doesnt populate calendar with events.
I opened https://fullcalendar.io/js/fullcalendar-3.5.1/demos/basic-views.html
looked in the source code and did exactly the same, created an array of events, exactly as in this example, and nothing is displayed in the calendar.
Is there any other component that actually works ???
Do you try for something like this, [ https://demo.vaadin.com/calendar ]
Also Vaadin gives you the same Calendar as Googleand you should be able to use it with AngularJS. I hope it's what you need.
Best Regards..

How to prevent the keyboard to appear in phonegap?

I'm developing an application with sencha touch and phonegap, and I have been created a component extending TextField class. It works this way:
The user taps the field
The application open a modal with a calendar inside it
The user taps the number representing the day he wants to choose
The modal closes and set his value on the textfield.
I wanna know if is there a way to when the user taps the TextField, the keyboard don't appear.
Thanks.
PS: Sorry my bad english, I wish you could understand ^^
I have been solved my problem just adding readOnly: true on my textfield.
Thanks for everyone who tried to solve it.

Does anyone know about a WPF conponent that acts like the gmail to field?

Where the To-field is a textbox that also contains a dropdown, where each new contact is added to the text field? Similar to the facebook to field, where a box is created for each receiver.
Is there such a library or component out there?
Thanks
just look at the Latest WPF Toolkit they have introduced AutoCompleteTextBox.
http://wpf.codeplex.com/releases/view/40535

Stop Dragging from a WPF WebBrowser control

I have a WPF application which contains a WebBrowser control.
Currently, the user can select something within the WebBrowser and can copy the content by dragging it out to another application and dropping it there.
I'd like to be able to stop the user doing this. I'd assumed that there would be a "DragStart" event that I could capture and cancel - but I haven't been able to find something so simple.
Is it possible to capture the start of drag event and cancel it?
Is there a better way to achieve this?
You can implement IDocHostUIHandler::FilterDataObject and filter out common clipboard formats
You don't get access the WPF browser's native interface until the document is ready. Not sure if it would work with the WPF browser class. There is also a bug in Windows Forms to prevent you from customizing its implementation of IDocHostUIHandler.
You can try some wrapper class of the webbrowser ActiveX, such as the one described at http://www.codeproject.com/KB/miscctrl/csEXWB.aspx

Resources