Telerik skin not working properly - asp.net

I am using telerik rad controls on my asp net webforms application. And now I am having a problem with the skins, it works only on specific pages.
This is the thing...I have two pages PlacementProvider.aspx and ProviderDetails.aspx.
On the first page(PlacementProvider.aspx) everything is working. I can apply any of the skins as i want using the smart tag on RadGrid but on the second page(ProviderDetails.aspx) I only get the default skin when trying to choose a skin to RadGrid using the smart tag.
On the other side if I copy and paste the first page(PlacementProvider.aspx) and try the same thing it works.
Now, what is the the difference between this pages, how can I get the skin working on all pages?

Do you get any design time errors in the ProviderDetails.aspx when you switch to Design mode?
If the smart tag does not offer the rest of the available skins, you can type them manually as a value of the Skin property.
The available skins are enlisted at https://docs.telerik.com/devtools/aspnet-ajax/general-information/controlling-visual-appearance/how-skins-work#built-in-skins, e.g.
Black
BlackMetroTouch
Bootstrap
Default
Glow
Material (available for the Lightweight RenderMode only)
Metro
MetroTouch
Office2007
Office2010Black
Office2010Blue
Office2010Silver
Outlook
Silk
Simple
Sunset
Telerik
Vista
Web20
WebBlue
Windows7

Related

How to find DevExpress Grid Cell Active Editor element in WinAppDriver

I am using WinApp Driver to test windows forms application that has DevExpress grid. When I click one of the cells it brings up active editor which contains more controls. I can identify active editor or controls within it using Recorder. However i cannot find this element using xpath provided by Recorder. How can I find active editor of dev express grid cell?

Dynamic grid using wpf devexpress

I m having situation whhere i need to add text box in grid control cell just like we add button in the cell but the text box should open a small window when click .User should be able to fill enteries in that window.
This is possible in extjs but can anyone please tell how to achieve this with devexpress controls.Please find the screenshot of the same.
DevExpress provides a workaround for WPF platform: PopupContainerEdit for WPF, whats the status?
This solution is valid for WinForms platform only
DevExpress has the PopupContainerEdit editor that supports in-place mode. This editor is very handy to implement the functionality you described.
To make it work properly in in-place mode, handle these two events:
PopupContainerEdit.QueryResultValue Event
RepositoryItemPopupContainerEdit.QueryDisplayText Event
The result value will be passed to the cell where the editor is located. It is a bad practice to modify data manually after closing the pop-up window.

page navigation in adobe air 4.6

how to naviaget one mxml page to another via action script
the navigatTourl() method used for webpages but, if want to navigate another mxml page mean how to show
When creating a Flex Application, the page analogy does not work very well. In an HTML site, each page is a self contained entity with no real relation to any other page. However, a Flex Application is a single self contained entity; and that entity can have lots of screens, or views.
To navigate between views in a Flex Application there are a lot of ways. Here are three approaches:
You could use States
You could use a Navigator container, such as a ViewStack or a TabNavigator.
You could toggle the visible property of your UI Components.
Generally, the first two options would be used for massive changes. The third option would be used for minor changes.

How to pop up Flex Panel by clicking on a GWT(or GXT) component?

I have a web-application whose UI is implemented in GXT (ext GWT).
Now I want to switch to Flex but as the application is so large that I cannot afford to start migrating the whole application at once.
So I have decided to migrate slowly. So what I want is to bring up a Flex panel on the click of a GXT's button.
Basically the idea is how to make Flex components listen to the events generated by GXT's component.
Flex app is ultimately an SWF and GWT gives you JavaScript; you can use ExternalInterface to invoke an SWF's methods from JavaScript code and vice-versa. Checkout the addCallback method - the linked page has some sample code in it.

Resizable Gridview columns using javascript

I want to Resize Gridview columns using javascript. Below is an example.
I think this plugin does what you requested http://www.ita.es/jquery/jquery.grid.columnsizing.htm
Though I would suggest checking out this customizable jQuery based grid aswell http://www.trirand.com/blog/
I would recommend using jQuery if you want to do this yourself. You can grab the click event of the header row (or wherever you want), and then you can use the x/y of the mouse to drag a line. Once the mouse is released, you can troll through the table and reset the width of the 's.
Otherwise, there are several JavaScript table controls on the internet that you could use.
You can try open-source project ASP.NET CoolGridView control. It works well with IE 6/7/8, Firefox 3.0 / 3.5, Safari and Chrome. Supports resizable columns and fixed headers.
http://johnsobrepena.blogspot.com/2010/02/coolgridview-february-2010-release.html
The example you are refering to is using ExtJS it looks like. There's also jqGrid (an extension to jQueryUI), and others. If you are looking for an ASP.Net Ajax grid control there are several options from many different component vendors (Component One, Infragistics, DevXPress etc).
I'm only presuming here that you want a server-oriented Grid component because of the term "GridView" in the question. I would suggest searching for: "ASP.Net Ajax" grid control. This will give you results that may best suit your needs.

Resources