jQWidgets Forums
Forum Replies Created
-
Author
-
May 30, 2017 at 11:35 am in reply to: jqxslider with latest version jqxslider with latest version #93955
Hi,
Having the same issue with 4.5.2 – have you been able to resolve your issue?
Regards,
IgiApril 15, 2015 at 11:34 am in reply to: make only last level clickable make only last level clickable #69916Thank you so much – this is exactly the solution I was looking for!
Kind regards,
IgiFebruary 25, 2015 at 3:05 pm in reply to: make only last level clickable make only last level clickable #67668I think I should also mention that it’s a dynamic menu using JSON
Kind regards,
IgiFebruary 25, 2015 at 3:02 pm in reply to: make only last level clickable make only last level clickable #67667Hi,
Not sure if this will explain it better –
Group1
–ChildGroup1a
—-Item1a1
—-Item1a2
—-Item1a3
–ChildGroup1b
—-ChildGroup1b1
——Item1b1a
——Item1b1b
—-Item1b1
—-Item1b2
–ChildGroup1c
Group2
–Item2a
–Item2b
–ChildGroup2a
—-Item2a1
—-Item2abetc etc..
I only want the Items to be clickable, not the Groups or ChildGroups
Kind regards,
IgiFebruary 12, 2015 at 6:24 am in reply to: Disable Keyboard Navigation – jqxDataTable Disable Keyboard Navigation – jqxDataTable #66970Hi,
I found a way to help with my issue –
handlekeyboardnavigation: function (event) {
if (event == 37)
return 39;
if (event == 39)
return 37;
}This is respective for the left and right arrows on the keyboard.
Kind regards,
IgiFebruary 10, 2015 at 5:24 am in reply to: Cannot access ID or parent ID Cannot access ID or parent ID #66791Hi,
I found the solution in part of the XML example, thanks –
var records = dataAdapter.getRecordsHierarchy(‘ID’, ‘parentID’, ‘items’, [{ name: ‘text’, map: ‘label’}, { name: ‘id’, map: ‘ID’)]);Regards,
IgiFebruary 9, 2015 at 6:36 pm in reply to: Cannot access ID or parent ID Cannot access ID or parent ID #66780Hi Dimitar,
Could you perhaps explain how to map the “text” as “label”, as well as “ID” as “id” in the above scenario. In other words, is it possible to map more than one property? Also then, after the click event, how do I access those properties ?
Regards,
IgiJanuary 27, 2015 at 8:11 am in reply to: select new row on Enter pressed select new row on Enter pressed #66056Thank you very much, work perfectly.
One other question, is there a way to select all text automatically when the new row comes to focus, as you would in JQuery use $(element).select() ?
Igi
-
AuthorPosts