Double Column CSS Dropdown Menu - drop-down-menu

I am looking for Two column css drop down menu. Can you tell me the website where I can get the source code for this???
Example: If mouse over on the horizontal drop down menu, it should show two columns.

Here is a detailed look on how to create your own dropdown menu in 2 columns. :-)
http://www.ehow.com/how_12008977_make-dropdown-menu-two-columns.html

Related

How to render a template column of a grid, in a detailRow?

Here's my situation. I have a main grid, where each row expands to show 2 tabs. The first tab has another grid, with dynamically columns. One of the columns needs to display a template with a modified Kendo Menu (in order for it to look like a dropdown).
When the column is rendered in the main grid, it works just fine. However, when I move that column to the sub-grid, I just see the list, without the kendo menu applied to it.
Two workarounds I tried:
http://dojo.telerik.com/OmiBu/3
Visuals:
Good and Bad

Report Builder remove expand/collapse action

I have a table in Report Builder, is it not possible at all to remove the expand/collapse functionality from it?
I would also like to open the wizard and revisit the steps which were executed to create the table. Is that possible?
Thank you.
You can remove the expand / collapse functionality, or the toggle, from the report. If you open and edit the .rdl file as XML, you can remove the <Visibility> node from the <TablixMember>.
For example this:
<TablixMember>
<Group Name="Details" />
<Visibility>
<Hidden>true</Hidden>
<ToggleItem>Action</ToggleItem>
</Visibility>
</TablixMember>
would become this:
<TablixMember>
<Group Name="Details" />
</TablixMember>
It can be done via the RDL as described above or it can also be done in the Report Builder. Assuming it's a Row Group that has the Expand/Collapse option you want to remove, in the Row Groups section of the Report Builder, right-click on the Row-Group Name and select "Group Properties". Select "Visibility" in the left nav menu. Uncheck the "Display can be toggled by this report item:" option. You'll also likely need to change the option above, "When the report is initially run" to "Show". Then hit the OK button. Then run your report to see that the Expand/Collapse option has been removed.
-Eric Isaacs
Is it possible to remove the expand/collapse functionality from the tablix?
I'm not sure what you're talking about, but if it is the grey border at the left and top of the tablix then I don't think it's possible. It's what is useful in this kind of data region.
Is it possible to reopen the wizard to revisit the steps for creating a tablix?
I don't think so.
First step: choose a dataset.
Second step: choose the fields. You can modify all this when the tablix is already created by creating rows and colums when you right click on the tablix.
Third step : choose a total. You can do so by clicking on a line group at the bottom of the screen and selecting 'add a total' and then 'before' or 'after'.
Fourth step : for the style, you can only click on a cell and select a background color.
So, except the dataset, you can modify everything that's in the wizard but at different places.

Kendo Hierarchy Grid clear selection

I am playing with this example by Kendo: http://dojo.telerik.com/EneFe
I have modified it so that the rows are selectable (selectable:true).
I have added a button on the top which calls the grid.clearSelection() function.
This is supposed to clear all selection but it does not clear the selection of rows that are selected in the dropdown table. (Recreate: click on the first row "Nancy", expand it and click on "10258 - Austria", then click the "Clear Selection" button and only "Nancy" will clear)
Is the function not working properly or am I misusing it?
In any case - how can I achieve a total clearing of all selected rows?
This is because they are two separate grids. Check this:
http://dojo.telerik.com/EneFe/2

Vlookup with a drop down menu

I have an excel spreadsheet that has a drop down menu with two options. When one option is selected, I would like a cell in a different column to use the infromation selecetd in the drop down menu to vlookup a value. Whichever option is chose from the drop down menu pertains to different data. For example, in my drop down menu, the options are: "In-Town" and "Out of Town". It relates to whether or not employees are working in town or out of town. When "In town" is selected, there is specific rates (hourly wages) that apply to that selection, and vice versa. How do I make the cell vlookup the selected value from the drop down menu?
This works exactly as you have described it. Set up the drop down using data validation, refer to the dropdown cell as the first parameter in the vlookup (don't forget to lock it with the $ prefix).

Deleting column in devexpress grid

I want to delete column in devexpress grid without using Customization window. For example: by dropping column out of grid or there will be a X button on column that will delete it. Is it possible?
It is possible to drag-drop a particular ASPxGridView Column into the Customization Window or hide the Columns programmatically.
See the following Examples:
E3812
E2023
E3031
If you want to show/hide an individual Column while export, use the solution from the E3352 Example.

Resources