Is this possible not to grayed out control when it is disabled?
I need to use custom calendar control which has third party rjs calnedar control with image and textbox but when i disabled them they grayed out which i think it suppose to do.
Is there any way not to grayed out calendar image when disabled?
ADDED
It looks like that third party calendar is showing different calendar image denpends on disable property of this control.
Is there any way to change the image which is already rendered?
There is one custom control which has text box and third party calendar.
Just go to that source: /PopCalendar, copy calender image ex: Calendar.gif and replace it with DisabledCalendar.gif. problem solved..
Related
I need to add an icon or text inside an event, but after search for documentation, I've no idea how to do.
For explane better what I need, I've added a pic:
I can't split an event because I need the ability to move that event.
Any ideas?
I want to show some autocomplete option on focus, at the moment '#autocomplete_path' only works when a user types something in the text field.
How can we show some default suggestion moment user click inside the text field?
As I tried a lot using Drupal form API, not able to achieve. Now using JQuery/AJAX and showing dynamic option list onclick.
I want to develop a custom popup that works exactly like a picker. The only difference I am looking out for is that I want a view or page to be in the popup content rather than the basic picker items.
Have you checked Rg.Plugins.Popup ?
https://github.com/rotorgames/Rg.Plugins.Popup
You can create your own pages and choose where and how they will popup. Animations ,click to close, timeout closing and many other features are supported.
There is a calendar image near to the text box for dropdown calendar. When I change the date value in text box by
$("#calendarTextBox").val("11/22/2004");
and then if user clicks on the image, the drop down calendar contains the old date value instead of the one set by the javascript.
Any clues will be helpful.
Calendar Demonstration for trying out.
Got the solution.
$find('<%CalenderExtenderContol.ClientID%>').set_selectedDate(new Date('11/22/2004'));
In my flex app I have custom tooltips on buttons that hide and show based on user context.
The problem that I dealing with is that when I call my showTips() function I only want to show tooltips on the buttons that visible in the view. So buttons that on a un-selected tab (tabNavigator) should not show the tooltips.
For some reason all tooltips are showing.
Is there a way to detect if a button is not in current view, like on a un-selected tab?
If you gave us some code I could check this out, but would this work?
if(button.parent.visible) { showTip(button);}
Instead of custom coding for each button, make use your tabnavigator's creation policy is set to "auto".
Check this link for more details
http://livedocs.adobe.com/flex/3/html/help.html?content=layoutperformance_05.html