Dear Friends,
I am new to RadControls and have minimum understanding of the same. I have been trying to learn the tricks for the last few days (5) and know a few bits.
But it seems a lot of effort will be required to have a working knowledge and I am ready to do the same.
i am trying to do something for which I could not find an appropriate solution on the net and with my basic understanding I am frustrated.
The problem is listed below with all the table structures.
CREATE TABLE [dbo].[tblRegion] (
[AutoID] [int] NOT NULL ,
[RegionID] [int] NOT NULL ,
[RegionName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
) ON [PRIMARY]
CREATE TABLE [dbo].[tblCountry] (
[AutoID] [int] NOT NULL ,
[CountryID] [int] NOT NULL ,
[CountryName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
[RegionID] [int] NULL ,
[RegionName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[TimeZone] [nchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
) ON [PRIMARY]
CREATE TABLE [dbo].[tblCity] (
[AutoID] [int] NOT NULL ,
[CityID] [int] NULL ,
[CityName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[CountryID] [int] NULL ,
[CountryName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
) ON [PRIMARY]
CREATE TABLE [dbo].[tblLocation] (
[AutoID] [int] NOT NULL ,
[LocationID] [int] NOT NULL ,
[LocationName] [int] NOT NULL ,
[CityID] [int] NOT NULL ,
[CityName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
) ON [PRIMARY]
The heirarcy is like this Region is on the top, Country belongs to a Region, City belongs to a Country and Location belongs to the City.
We will focus only on the Country table.
My problem is as given below:
I want to use only webservices or page methods for the solution.
I want a RadGrid to display maximum 10 countries with custom paging.
i want the sorting feature only in the Region Name and Country Name not in all the columns of the table.
I want a search feature only on the Country Name column and not all columns of the table.
I want the Insert and Edit mode using templates.
For the region it should be a RadComboBox which should be able the pass the Value and Text of the RadComboBox.
Same for the Country.
All of the above feature should be achievable using only Web Services or Ajax calls.
I tried a lot to achieve the same but failed to reach anywhere.
If any of the forum member would be kind enough to give me a solution it will be a great booster to my confidence.
Thank you
Warm Regards
Madhu Menon
I am new to RadControls and have minimum understanding of the same. I have been trying to learn the tricks for the last few days (5) and know a few bits.
But it seems a lot of effort will be required to have a working knowledge and I am ready to do the same.
i am trying to do something for which I could not find an appropriate solution on the net and with my basic understanding I am frustrated.
The problem is listed below with all the table structures.
CREATE TABLE [dbo].[tblRegion] (
[AutoID] [int] NOT NULL ,
[RegionID] [int] NOT NULL ,
[RegionName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
) ON [PRIMARY]
CREATE TABLE [dbo].[tblCountry] (
[AutoID] [int] NOT NULL ,
[CountryID] [int] NOT NULL ,
[CountryName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
[RegionID] [int] NULL ,
[RegionName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[TimeZone] [nchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
) ON [PRIMARY]
CREATE TABLE [dbo].[tblCity] (
[AutoID] [int] NOT NULL ,
[CityID] [int] NULL ,
[CityName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[CountryID] [int] NULL ,
[CountryName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
) ON [PRIMARY]
CREATE TABLE [dbo].[tblLocation] (
[AutoID] [int] NOT NULL ,
[LocationID] [int] NOT NULL ,
[LocationName] [int] NOT NULL ,
[CityID] [int] NOT NULL ,
[CityName] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
) ON [PRIMARY]
The heirarcy is like this Region is on the top, Country belongs to a Region, City belongs to a Country and Location belongs to the City.
We will focus only on the Country table.
My problem is as given below:
I want to use only webservices or page methods for the solution.
I want a RadGrid to display maximum 10 countries with custom paging.
i want the sorting feature only in the Region Name and Country Name not in all the columns of the table.
I want a search feature only on the Country Name column and not all columns of the table.
I want the Insert and Edit mode using templates.
For the region it should be a RadComboBox which should be able the pass the Value and Text of the RadComboBox.
Same for the Country.
All of the above feature should be achievable using only Web Services or Ajax calls.
I tried a lot to achieve the same but failed to reach anywhere.
If any of the forum member would be kind enough to give me a solution it will be a great booster to my confidence.
Thank you
Warm Regards
Madhu Menon