Programatically trigger dhtmlx header column click - dhtmlx

I have integrated DHTMLX grid and want to programatically call click event on a column header. I have tried onHeaderClick but that did not help.
Can anyone please guide me, Thanks.

Related

Kendo DropDownList is not opening inside KendoTreeView

I am new to kendo TreeView so please bear with me.
I am trying to bind a kendo dropdownlist in each row of Kendo TreeView.
I am able to bind kendoDropdownList successfully but when I am trying to open the dropdown it closes very quickly and the user is not able to select the value.
Please check my code in below link
https://dojo.telerik.com/#Abhishek/EwamowIv
Any help is highly appreciated
Thank you for the reply.
I have changed my approach to bind the dropdown in Kendo Treeview.
Instead of binding Kendo DropDownList I have created dropdown through javascript and bind it with the datasource.
Please check below my approach, hope it may help someone.
https://dojo.telerik.com/#Abhishek/udAcuYel
From the Telerik forums, my bold
The current scenario is not supported. There is a conflict between the
DropDownList and the TreeView items. Additionally each time the
DropDownList is clicked, the TreeView item is selected, which is
triggering a refresh of the template. Please reconsider the current
implementation and try a different approach.

How to bind the event Kendo grid PopUp mode?

My requirement i want to do the calculation in Kendo Grid While Clicking the Add New Record or Edit in Popup mode. Currently i am not able to catch the Kendo Grid Popup event.
But i can able to catch the event outside using html on chaning event. It's working but i need to add the this functionality in inside grid like how we are binding event/methode to save, remove ,cancel.
I tried using change event but it is working inline of the grid but it's not working in popup mode. Please look at my Dojo link. http://dojo.telerik.com/AtebI/10
Acutally i am generating grid on the fly(dynamically). So i have to bind the event before Creating/rendering.
Anyone help me to achieve.
DataGrid edit event is fired when user opens row edit on popup editor and also when creating new row.
http://docs.telerik.com/kendo-ui/api/javascript/ui/grid#events-edit

Need to disable the button present in the bottom of jqGrid dynamically

Currently, I am working on asp.net mvc2 project which has a view containing three dropdown controls. I am also using jqGrid for displaying the data in the application. The jQGrid is displayed with buttons called Add,Edit,Search in the footer section. I need to disable and enable the Search button dynamically. If the user selects any item from dropdown1 and dropdown2 then I need to disable the Search button and in case the user selects any item from dropdown3 then I need to enable the Search button.
I am new to jQGrid implementation. Can anyone help me with some sample code to handle the above functionality.
Thanks & Regards,
Santosh Kumar Patro
I would recommend you to read the answer and another one. The answers shows how one can hide/show or enable/disable buttons from the navigator bar. You can use onSelectRow or beforeSelectRow callback to disable/enable/hide/show the navigator buttons dynamically.

How can I get Google Places API to work with a select/drop-down menu instead of radio buttons?

Currently I am using the regular radio button markup for the PlacesAPI but I would really like to use a drop down menu instead. Can someone give me any pointers as to how to get this working?
I have tried using the onChange event with a select tag but have not been able to get it working.
Thanks.
How about using Autocomplete?

How to create a button like New Mail in Outlook add-in?

Can anyone pls tell me how to create a button(in CommandBar) like 'New Mail' (with a dropdown list) in Outlook?
When one clicks on the button it should do some action and when clicked on the down arrow mark, it should populate a list of items. I am in need of this very much.
If anyone know the answer pls let me know.
Thanks in advance!
-Pranav
Assuming Outlook<2007, you add a new button to the explorer/inspector via CommandBars.Add("foo", Type:=msoControlDropdown) and add entries to the drop-down via myDropdown.Add("bar").
See also the reference for CommandBarComboBox.
You can't populate it on click though, you have to find other suitable events for that, e.g. Explorer.SelectionChange.
On Outlook >= 2007 you need to customize the ribbon which is a bit more writing work. Customizing the Ribbon in Outlook 2007 is a good introduction into that.
To create a new mail item use myOlApplication.CreateItem(olMailItem) or myMailFolder.Items.Add(), set it up as needed and show it in an inspector via e.g. myMailItem.Display().
Sound like you are looking for a split button. Unfortunately the API does not expose that.
You can hack up a Popup under the button which is a poor attempt of a split button.

Resources