jQWidgets Forums
Forum Replies Created
-
Author
-
Hi
I don;t find “ID” attribute assigned to DIV element of vertical splitter button, how do i assign tooltip based on “class”, it doesn;t work for me, any thought ?
<div class=”jqx-splitter-collapse-button-vertical jqx-splitter-collapse-button-vertical-web jqx-fill-state-pressed jqx-fill-state-pressed-web” style=”width: 6px; height: 45px; position: relative; top: 50%; left: -1px; margin-top: -23px; margin-left: 0px;”></div>
Thanks
March 19, 2014 at 5:52 am in reply to: Tooltip for dropdown list item Tooltip for dropdown list item #51339Hi
thanks, it works
Thanks
March 19, 2014 at 3:41 am in reply to: Tooltip for dropdown list item Tooltip for dropdown list item #51330Hi
Change / Select Drop down item, tool tip appears on hover, click on button, shows EMPTY.
Commenting ‘Tooltip” code, works as expected.
Thanks
March 18, 2014 at 12:11 pm in reply to: Tooltip for dropdown list item Tooltip for dropdown list item #51288Hi,
Let me explain clearly.
Having a dropdown and we are using user selected entry to save into database and same time we need to show “tooltip” for longer text labels.
There are two different functionalists for dropdown .. 1) have to show toopltip for selecte entry and second we need dropdown selected entry for some purpose in backend.
If no tooltip code, we are able to get value of dropdown .. like $(‘#box’).val(), but when we placed tooltip code, tooltip appearing but val()method returning NULL.
Hope you understand, problem is not with displaying tooltip, we get NULL when tooptip code in place.
Thanks
Thanks
March 18, 2014 at 11:46 am in reply to: Tooltip for dropdown list item Tooltip for dropdown list item #51281HI
This is actual code ..
$(“#comboBox”).on(‘change’, function (event) {
var item = event.args.item;
if (item) {
$(“#comboBox”).jqxTooltip({ content: item.label, position: ‘mouse’, name: ‘tooltip’});
}
});Thanks
March 18, 2014 at 11:11 am in reply to: Tooltip for dropdown list item Tooltip for dropdown list item #51277Hi
How come .. below code displays tooltip of selected item but, calling $(‘#comboBox’).val() returning ”, but it returns exact selected value if i comment below tooltip code/
$(“#comboBox”).on(‘change’, function (event) {
$(“#comboBox”).jqxTooltip({ content: item.label, position: ‘mouse’, name: ‘tooltip’});
}Any help ?
Thanks
March 18, 2014 at 10:22 am in reply to: Tooltip for dropdown list item Tooltip for dropdown list item #51268Hi
it works on ‘change’ event, great help.
Thanks
March 18, 2014 at 10:03 am in reply to: Tooltip for dropdown list item Tooltip for dropdown list item #51262Hi
Anything wrong here ..
$(“#comboBoxXYZ”).jqxDropDownList( { …….. });
$(“#comboBoxXYZ”).jqxTooltip({ content: $(‘#comboBoxXYZ’).val(), position: ‘mouse’, name: ‘tooltip’});
Thanks
March 18, 2014 at 9:36 am in reply to: Tooltip for dropdown list item Tooltip for dropdown list item #51257HI
Following code doesn’t work … please advice
renderer: function (index, label, value) {
$(“#listitem”+index+”innerListBoxcomboBoxSoldTo”).jqxTooltip({ content: ‘<b>’+value+'</b>’, position: ‘mouse’, name: ‘tooltip’});
}Thanks
March 18, 2014 at 9:17 am in reply to: Tooltip for dropdown list item Tooltip for dropdown list item #51255HI
Please help, on how to integrate it for dropdown ?
Which event should use ?
Thanks
March 18, 2014 at 9:09 am in reply to: Tooltip for dropdown list item Tooltip for dropdown list item #51251Hi
Data populating into dropdown boxes are coming from backend.
Thanks
March 8, 2014 at 3:50 pm in reply to: Position of Dropdown List ? Position of Dropdown List ? #50726Hi
Did it by enableBrowserBoundsDetection:true
Thanks
HI
When grid is wrapping between <form> tag and it’s not aligning when executing at server side.
Thanks
HI
it works when i put form {margin:0; padding:0}
Thanks
Hi
I’am afraid it’s not working ,
I have an expander, i need to show some content into that.
That has two parts, one is search panel, those search options are changing as per radio button selection
and second part is search result grid.first pat : 3 radio buttons, 1) by name 2) by city 3) by country, each radio button selection should show different search boxes and results should be into grid.
I was trying to do it using expander but not aligning properly, any help ?
Thanks
-
AuthorPosts