devexpress

CodeRush' XPress solution cache getting a bit big (4.5Gb)

...any ideas how to stop it from growing? Our IT services has placed a cap on profile size anmd now we're getting annoying audit messages. Normally I'd blame IT servcies for their 'One size fits all, treating developers like they were drones from sector 7G' attitude but 4.5GB is a bit on the big size. Give how clever those chaps at De...

DevExpress NavBar: Appearance has no effect

Hi all, this question is fairly DevExpress-specific. I use a NavBar control with the standard "SkinExplorerBarView" in a WinForms app, and would like to change the appearance of a selected navigation link. I changed the background color of the control's "ItemPressed" and "ItemActive" appearances, as well as each single item's "Pressed...

ASPxGridView -- How to simply add example values with only a DataSource property?

Hello I have a ASPxGridView. In it(for the uninformed) is only a DataSource property for telling it what data to load. My problem is that I'm simply trying to mock up an example and don't need to tie it to an actual database. How would I do this? I basically just want a few rows and some columns but since it only takes a datasource I'm n...

tab control item contain individual pages

My tab control items contain three different pages.Clicking on tabitem ,they are visible,but when want to perform javascript event on page item then problem arise.javascript well works for only first tab control item,rest of them are not work.Show me the bellow error. Microsoft JScript runtime error: 'this.GetStateInput().value' is null...

anyone research DevExpress' source code ?

I want to study the source code of DevExpress, does anyone have any information about that ? Since I really don't know how to start to read it. if you are also researching the source code of devexpress and you would share it on your blog, then could you please give me your blog link ? EDIT: once you purchase the universal version it wi...

firefox and opera not compatible browser

Hello guys, Hopefully now I'm posting the right question :) In web application I'm using devexpress toolkit, and have the right (correct) result in IE only (using also some java-script), on clicking event for example is working in chrome and safari, but in Firefox and Opera not :( The grid view are not showed properly in division in any...

aspxcombobox populating on the fly

Aspxcombobox populating on the fly works fine with IE, but with others browsers, when using arrow keys for navigation, the second depended control, always has value for the first next and not for the current, so I have a bit of delay ... ...

Devexpress ASPxGridView GetSelectedFieldValues Can't get values

I'm using a gridview with paging. My grid has a command column and ShowSelectCheckbox is set to true. I bind DataTable to grid at page_load event with the condition [ if (!IsCallback) ]. So when i change page index data is lost. After that i wrote bind code to grid's PageIndexChanged event. Now it works like charm. But GetSelectedField...

How to deploy DevExpress to server?

Hello I am needing to deploy a project using DevExpress controls to an IIS 6.0 server. The project loads fine and until I add in the DevExpress controls. When trying to load the site I get the error Could not load file or assembly 'DevExpress.Web.v9.3, Version=9.3.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a' or one ...

Visual studio 2008 isn't recognizing DevExpress

I have been working in Visual Studio which has DevExpress. My project now doesn't recognize DevExpress so I now have 102 errors on lines like: GroupHeader1.GroupFields.Add(New DevExpress.XtraReports.UI.GroupField("name")) Friend WithEvents XrPageInfo1 As DevExpress.XtraReports.UI.XRPageInfo In addition to this when I try to go to the...

Is it possible to remove the gap between the caption buttons (minimize, restore...) in Windows XP/Vista?

I needed to remove the gap between the buttons while creating a skin using Devexpress skin editor. I couldn't find such an option. Then I thought it can be done by code but I couldn't find an answer, even using the Windows API. ...

Limit Selectable Rows for MultiSelect in cxGrid (Developer Express)

Does nybody know how to limit the number of rows the user can select in a cxGrid where MultiSelect is active? The Grid is working in GridMode = True - because the amount of data is really big (200.000 rows). - Now if you press CTRL+A all rows are loaded because the grid wants to select them all. Any tipps? Thank you ...

Percentage function for a group based on another group.

I have two grouping levels in a report. Group A can have a Percentage() of the entire report and so can Group B, but I would like to know the Percentage() of Group A of Group B. Even if I code it, it seems like once the inner and outer groups have created their footers, I can't go back to to the inner group and set it's value. Example: ...

How to change the controltype on clientsideevents for devexpress

Hi there, I have a combobox and a gridview. What i want to do is, according to combobox selection, one control of the gridview has to change. I tried to do it clientsideevents but couldn't find the right source. Thanks Mehmet Serif ...

Using the devExpress WinForms controls with Clarion NET

Hi, How seamless is the integration of devexpress winforms controls in Clarion NET. Does it work at all ? Is it comfortable ? Bjoern ...

xtragrid sticky rows

on my winform app, I have a xtragrid (layoutview), and several radio buttons. each button will retrieve data from database and display as cards in layoutview. btn1 is like "select abc, cde, efg, hij from table_1" and btn2 "select abc, cde, hij from table_2". If I click btn1 first, all four fields will show. If I switch to btn2, however, ...

Convert HTML or PDF to RTF/DOC or HTML/PDF to image using DevExpress or Infragistics

Hello all! There is a way do convert HTML or PDF to RTF/DOC or HTML/PDF to image using DevExpress or Infragistics? I tried this using DevExpress: string html = new StreamReader(Server.MapPath(@".\teste.htm")).ReadToEnd(); RichEditControl richEditControl = new RichEditControl(); string rtf; try ...

AspxGridView with a modal window,

Hi, I have a AspxGridView and when i double click to a row, it shows a modal window. What i want to do is, send one columns' value to a AspxLabel which is at ModalWindow. But i couldn't manage to do it, in gridview i use ClientSideEvents RowDblClick to get row value. Here is the code: GridView: <dxwgv:ASPxGridView ID="gw_Parameters" r...

disable aspxdateedit control in javascript

iam using aspx date edit control in my asp.net and c#.net application. is it possible to disable aspxdateedit control in javascript?if so how acan that be done.becoz ,i tried using "document.get elementbyid("datedit").disabled=true;" but it didn't worked out !! any suggestion on this? ...

count of number of rows selected in all the pages of the devexpress grid

i have a devexpress grid with multiple pages in asp.net and c#.net application. and i want to make only 2 selection in all the pages of the grid . if i select more than 2 rows in all thepages it should display an alert how to get the count of number of rows selected in all the pages of the devexpress grid? ...