473,382 Members | 1,332 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Which Controls to use for inserting stocklevels on Admin side?

I'm developing a Garment Shopping Cart. On the Admin side, while
inserting the each Product details, the user has to choose options of
Colour Icons and Sizes for each Garment.
All the colour icons are displayed in a Datalist which checkboxes and
the Sizes( 3 mnths, 6 mnths, 12 mnths, 18 mnths, 24 mnths) are
displayed using Checkboxlist.
The user has enter Stocklevels for each colour and size selected for a
particular product. For example if the colours red, blue and yellow are
selected and amoung sizes if 3, 6 and 12 mnths are selected. They need
to enter Stocklevels for 3 mnths - red=25, blue=35, yellow=76 ; for 6
months-- red=35,.......so on
But i'm not able to understand how to implement this..
Will that be a good idea to bind them in a Datalist with Labels and
Textboxs?
Can anyone guide me out please
Thanks in Advance for your time and help

Jun 8 '06 #1
4 1147
I would use a grid or a repeater. hth

Jose
"savvy" <jo******@gmail.com> wrote in message
news:11********************@y43g2000cwc.googlegrou ps.com...
I'm developing a Garment Shopping Cart. On the Admin side, while
inserting the each Product details, the user has to choose options of
Colour Icons and Sizes for each Garment.
All the colour icons are displayed in a Datalist which checkboxes and
the Sizes( 3 mnths, 6 mnths, 12 mnths, 18 mnths, 24 mnths) are
displayed using Checkboxlist.
The user has enter Stocklevels for each colour and size selected for a
particular product. For example if the colours red, blue and yellow are
selected and amoung sizes if 3, 6 and 12 mnths are selected. They need
to enter Stocklevels for 3 mnths - red=25, blue=35, yellow=76 ; for 6
months-- red=35,.......so on
But i'm not able to understand how to implement this..
Will that be a good idea to bind them in a Datalist with Labels and
Textboxs?
Can anyone guide me out please
Thanks in Advance for your time and help

Jun 8 '06 #2
Thanks Jose for your reply and time
Lets say i used a repeater or grid
Here, each size has some number of colours icons underneath it.
how can you repeat the colours keeping the Size label constant
Lets say the user has selected red,blue, yellow and sizes 3 , 6 ,
12months , so

3mnths
-- Red
-- Yellow
-- Blue

6 mnths
-- Red
-- Yellow
-- Blue

12 mnths
-- Red
-- Yellow
-- Blue
how can i implement the above structure using the repeater or anything
Is it possible ?
if you can you give some clue that will be of great help?

Thanks

Jose Rodriguez wrote:
I would use a grid or a repeater. hth

Jose
"savvy" <jo******@gmail.com> wrote in message
news:11********************@y43g2000cwc.googlegrou ps.com...
I'm developing a Garment Shopping Cart. On the Admin side, while
inserting the each Product details, the user has to choose options of
Colour Icons and Sizes for each Garment.
All the colour icons are displayed in a Datalist which checkboxes and
the Sizes( 3 mnths, 6 mnths, 12 mnths, 18 mnths, 24 mnths) are
displayed using Checkboxlist.
The user has enter Stocklevels for each colour and size selected for a
particular product. For example if the colours red, blue and yellow are
selected and amoung sizes if 3, 6 and 12 mnths are selected. They need
to enter Stocklevels for 3 mnths - red=25, blue=35, yellow=76 ; for 6
months-- red=35,.......so on
But i'm not able to understand how to implement this..
Will that be a good idea to bind them in a Datalist with Labels and
Textboxs?
Can anyone guide me out please
Thanks in Advance for your time and help


Jun 8 '06 #3
Savvy, this is a tough one, after rereading the problem, I might want to use
nested asp repeaters. this is nasty but it would give you the type of
control you need. this will help with the rendering. For the update though
you will have to loop thru the items and check for which ones are checked. I
will keep on thinking about this problem. HTH

Jose

outer asp repeater: sizes
inner asp repeater: colors, stock level s

it would look like this

size 3
Red stock level (textbox)
Blue stock level (textbox)
Jun 8 '06 #4
Thanks Jose for time and great help
I was doing my search on this side as well where i found out exactly
the same as u said.
Nested Repeaters is the best suited solution for this but i think its a
bit of pain.
Thanks for your help, probably i'll knock again soon

Jose Rodriguez wrote:
Savvy, this is a tough one, after rereading the problem, I might want to use
nested asp repeaters. this is nasty but it would give you the type of
control you need. this will help with the rendering. For the update though
you will have to loop thru the items and check for which ones are checked. I
will keep on thinking about this problem. HTH

Jose

outer asp repeater: sizes
inner asp repeater: colors, stock level s

it would look like this

size 3
Red stock level (textbox)
Blue stock level (textbox)
.
.
size 6
Red stock level (textbox)
Blue stock level (textbox)
.
.
size 9
Red stock level (textbox)
Blue stock level (textbox)
.
.
"savvy" <jo******@gmail.com> wrote in message
news:11*********************@g10g2000cwb.googlegro ups.com...
Thanks Jose for your reply and time
Lets say i used a repeater or grid
Here, each size has some number of colours icons underneath it.
how can you repeat the colours keeping the Size label constant
Lets say the user has selected red,blue, yellow and sizes 3 , 6 ,
12months , so

3mnths
-- Red
-- Yellow
-- Blue

6 mnths
-- Red
-- Yellow
-- Blue

12 mnths
-- Red
-- Yellow
-- Blue
how can i implement the above structure using the repeater or anything
Is it possible ?
if you can you give some clue that will be of great help?

Thanks

Jose Rodriguez wrote:
I would use a grid or a repeater. hth

Jose
"savvy" <jo******@gmail.com> wrote in message
news:11********************@y43g2000cwc.googlegrou ps.com...
> I'm developing a Garment Shopping Cart. On the Admin side, while
> inserting the each Product details, the user has to choose options of
> Colour Icons and Sizes for each Garment.
> All the colour icons are displayed in a Datalist which checkboxes and
> the Sizes( 3 mnths, 6 mnths, 12 mnths, 18 mnths, 24 mnths) are
> displayed using Checkboxlist.
> The user has enter Stocklevels for each colour and size selected for a
> particular product. For example if the colours red, blue and yellow are
> selected and amoung sizes if 3, 6 and 12 mnths are selected. They need
> to enter Stocklevels for 3 mnths - red=25, blue=35, yellow=76 ; for 6
> months-- red=35,.......so on
> But i'm not able to understand how to implement this..
> Will that be a good idea to bind them in a Datalist with Labels and
> Textboxs?
> Can anyone guide me out please
> Thanks in Advance for your time and help
>


Jun 9 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: CharlesA | last post by:
Hi folks, I'm using ASP.net with Framework vs 1.1 I'm inheriting from a custom rolled master page class that is just that a class that inherits from web.ui.page but it has no designer associated...
1
by: savvy | last post by:
I'm using MS SQL 2000. I developing a shopping cart where on the admin side when we are inserting or updating the products, there is a chance that a single product can fall into two categories...
2
by: joeey | last post by:
I'm doing an online registration form and using ODBC to connect to my database. I'm new to programming thus I do not know most of the advance features for php and Access. I need help in inserting...
3
by: edurazee | last post by:
I am from C# Winforms background and recently switched to ASP.NET in c#. After working with Winforms applications along with BusinessObjects, O/R Mapping frameworks, and logical layering...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.