среда, 16 ноября 2011 г.

Started learning WPF

Наконец то взялась за изучение WPF технологии. Она конечно совсем отличается от тех технологий, с которыми я работаю. Придется изучать XAML, что же посмотрим как я с этим справлюсь. Кстати, вот мой первый WPF проект - оочень простенький веб браузер.

Add item to combobox with bounded datasource

I ususally need to add item with text like "None" or "Choose ..." to combobox with bounded datasource. So, here is the script, that helps to do this.

понедельник, 14 ноября 2011 г.

Insert data from popup to gridview

I' d like to post how insert data from popup to gridview after popup close in editing mode.For example, we have gridview reading data from table "testTable". We want update "Code" column with value from other table.

четверг, 10 ноября 2011 г.

Change background color of row on mouse over in ASPxGridview using C#

When moving the mouse over a row, it will change to a color of my choice. And, when the mouse moves off the row, the color will back to a color it used to be. I am setting the hover background color of the row in the HtmlRowCreated event.

среда, 9 ноября 2011 г.

Grants for User defined table types

Первый раз работала с tvp (table valued parameters)  и столкнулась с такой проблемой - не срабатывал код в C#, где я передавала tvp параметр.

понедельник, 7 ноября 2011 г.

ASPxGridview cell color depending on row value

In this post I want to describe how to change cell color in APpxGridview. Cell color is changed in one column depending on row value.I used ASPxGridview's HtmlDataCellPrepared event handler.

среда, 2 ноября 2011 г.

ASPxMenu in ASPxGridview with menu items that depends on a row value


Menu items are created from server side via the ASPxMenu Init  event handler and depends on a row value.I created different item click events, on "Delete" item click appears alert window, on "Edit" item click appears popup window.