showing list on text change event - popup

I am using VS 10 and SQL Server 2008. I want to show popup-list on text box change event, such that user can select from the list. This list will show 3 columns of particular table.
User should be able to select a particular item from the list and that selected record will be extracted in form fields.
How can I create such a pop-up list? and call it on text-change event?

you can use Popup and ListView.Set ListView as child of Popup control.3 columns can set as Listview sub items(3 subitems in a ListView Item).In text changed event your textbox, show pop-up control.

Related

create a select box in which data is populated from selecting another select box and it is editable

I have created two select box. in both, fetching data from database. By selecting first select box the second select box gets auto populated. What I want to do is that this second select box should be editable that is the user can type input also. What I have done now is that used datalist for second select box which is doing the thing, but I want to show the auto populated data as selected option in datalist

Separate row selection from row checkbox selection?

Does ag-grid support separating row selection from checked checkboxes?
My users need to select a row (click on it, or keyboard nav) to see further details about the row. Then they need to check the checkbox (or not) to select the row for later export to Excel.
So for example, they'll click every row to see the further details, but only check some of the checkboxes for later export. Is this supported?
If not, what would be a good approach to implement? Add my own checkboxes to the first column?
You can set suppressRowClickSelection to true when you want checkbox selection, and don't want to also select when the row is clicked. If true, rows won't be selected when clicked.
You can read more about this here - https://www.ag-grid.com/javascript-grid-selection/
You can use ag-Grids selection capabilities for the checkbox selection and then use the onRowClicked prop to do a different select on row click. I'm doing just this (but with onRowDoubleClicked.
You still want to set suppressRowClickSelection to true.

SSRS Report Query

Is it possible to insert a clickable + sign in an SSRS report column header? If "yes," then, on clicking that operator, I would like to display other columns which have been hidden by default. For example, as shown in the attached screen shot, to display columns 'AP' and 'CR' when sign + of column 'U' is clicked.
Yes, you can hide a column and toggle the Visibility based on another column header.
Right Click on the column you want to hide (where the Red Dot is) and go to the Visibility property.
Click on the Hide radio button so the column is Hidden when the report is run.
Check the Display can be Toggled box and choose the name of your U column.
Resulting table:

How do i disable and enable dropdownlist item based on a user selection on another dropdownlist

I have layout row which contains a dropdown, textfield and two buttons to add and remove rows.
My requirement is i have 10 items in dropdownlist if select one item (say Item1) and click on add row button, a new row will be created as same as first row. Now in the second row dropdownlist items i want to disable the selected item of previous dropdownlist item (Item1).
And i if change the dropdown item of first row to Item3 then automatically in the second row dropdown item it(Item1) should be enabled and vice versa.
How can i do this.
Please help me on this.
Thanks
Sathish
There are probably more ways to do it, but I would store the selected items in an array and store that in your client model.
Then bind the enabled property of your dropdown template to a formatter function which returns false or true, depending on whether the template item is in the selected array or not

how to select grid columns by query button in telerik radgrid?

hello friends
i am displaying data in telerik radgrid and i want to add a autocomplete text box with query button to select the particular row using one column for binding.
Can any one provide me a hint?
it has been almost a complete day but im getting no help.
How about using the solution from here? There is a textbox in the command item which filters the records by specified column values (the column is chosen from a dropdown beside the textbox).