472,372 Members | 2,231 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Creating interactive user-controlled ordering mechanisms on admin web interfaces?

(originally posted to one of macromedia's groups; no help, so hopefully
someone here can help me out. I'm using VBScript ASP.)

When designing administrative interfaces to websites, we often need to
provide users with a mechanism to change the order of items that are listed
on the page.

I have not come up with a graceful and elegant way to offer an interactive
ordering capability on administration forms, as you see in many desktop
apps. You can design various hacks -- say, allowing the user to designate
items "high priority" to trump mechanized ordering solutions, or allow the
user to assign an order integer or letter to each items. However, all of
these methods have a hacky, sucky quality to them.

What I would like is a means of allowing users an easy-to-use and
interactive way to adjust the order of listed records. Ideally I would like
some way that the user could select an item and/or make a single item go up
and down in the list on the admin page, and have that list order reflected
on the final page. Perhaps you print an imagemap "up" and "down" arrow
adjacent each listing, and pressing the "up" or down" button moves it up or
down. Or perhaps you have some client-side javascript widget that allows
selection and then movement via a single set of up/down controls.

There's three components to this: how you handle the ordering on the
database side, how you handle the UI issues on the web application, and how
you update the database information appropriately based on the user's input.

The hardest part of this problem is figuring out what needs to happen on the
database side: you have a collection of "ordering" values, with one each
presumably associated with each database record, and presumably you need ALL
the items updated for the collection of items you're administering.
Otherwise, you end up with messed-up situations where there are two
identically ordered items and the application doesn't know the right thing
to do.

Or maybe you somehow store the list order of items for a "publication" in a
single field on tblPubs, split the itemIDs out into an array, and update as
necessary. Somehow this approach feels like it may invite the wrath of the
database purity zealots, and it may not work well for open-ended
publications (e.g. an online newspaper that is continually updated.)

There may be a widget in ASP that's a cousin to concept like "queues" or
"stacks" that could help us.

Answering a small piece of my own question: this article has some tidbits
that may help:
http://www.4guysfromrolla.com/webtech/102799-1.shtml

Some smart person out there has solved this, and maybe you even have a link
to an article or tutorial. Can anyone suggest a solution and/or a starting
point?

Thanks,
KF


Jul 19 '05 #1
6 2295
On Wed, 31 Dec 2003 10:27:55 -0800, "Ken Fine"
<ke*****@u.washington.edu> wrote:
(originally posted to one of macromedia's groups; no help, so hopefully
someone here can help me out. I'm using VBScript ASP.)

When designing administrative interfaces to websites, we often need to
provide users with a mechanism to change the order of items that are listed
on the page.

I have not come up with a graceful and elegant way to offer an interactive
ordering capability on administration forms, as you see in many desktop
apps. You can design various hacks -- say, allowing the user to designate
items "high priority" to trump mechanized ordering solutions, or allow the
user to assign an order integer or letter to each items. However, all of
these methods have a hacky, sucky quality to them.

What I would like is a means of allowing users an easy-to-use and
interactive way to adjust the order of listed records. Ideally I would like
some way that the user could select an item and/or make a single item go up
and down in the list on the admin page, and have that list order reflected
on the final page. Perhaps you print an imagemap "up" and "down" arrow
adjacent each listing, and pressing the "up" or down" button moves it up or
down. Or perhaps you have some client-side javascript widget that allows
selection and then movement via a single set of up/down controls.

There's three components to this: how you handle the ordering on the
database side, how you handle the UI issues on the web application, and how
you update the database information appropriately based on the user's input.


Okay, the first is easy enough to follow, but I'm not sure I
agree/understand these three "components". The database doesn't care
what order the records are in, you only care on the user interface.
If you have to reload them in the same order in a different session,
create a table called UIOrder with two fields, the item number (or
whatever ID you use to identify unique records in your other table(s)
) and the order number. You'll need to update the order number for
all records, which may be a performance issue, but it's a small table
with only two columns and you could probably do a bulk update. I
can't imagine you'd be trying to have a user set an order for a
thousand items in a table anyway. This gets even simpler if you don't
need to maintain the order past the session, since you should be able
to use client-side code to do it.

Jeff
Jul 19 '05 #2
ljb
The code here will client-side sort an html table on any column. The sorted
order does not persist for the next session. Large tables may take a long
time to sort.

http://www.romankoch.ch/capslock/tablesort.htm

LJB
Jul 19 '05 #3
"ljb" wrote:

The code here will client-side sort an html table on any
column. The sorted order does not persist for the next
session. Large tables may take a long time to sort.


Error: document.all is not a function
Source File: http://www.romankoch.ch/capslock/tablesort.htm
Line: 70
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 19 '05 #4
ljb
I don't think I can help. The page,
http://www.romankoch.ch/capslock/tablesort.htm, works fine for me in IE6. I
use the code in my own pages without any problems either.

LJB

"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:ux****************@TK2MSFTNGP09.phx.gbl...
"ljb" wrote:

The code here will client-side sort an html table on any
column. The sorted order does not persist for the next
session. Large tables may take a long time to sort.


Error: document.all is not a function
Source File: http://www.romankoch.ch/capslock/tablesort.htm
Line: 70

Jul 19 '05 #5
On Wed, 31 Dec 2003 14:17:51 -0600, "Dave Anderson"
<GT**********@spammotel.com> wrote:
in <ux**************@TK2MSFTNGP09.phx.gbl>
"ljb" wrote:

The code here will client-side sort an html table on any
column. The sorted order does not persist for the next
session. Large tables may take a long time to sort.


Error: document.all is not a function
Source File: http://www.romankoch.ch/capslock/tablesort.htm
Line: 70


It also works great in Opera 7.20 which is generally more
finicky. What browser are you using?
Jul 19 '05 #6
"Stefan Berglund" wrote:

Error: document.all is not a function
It also works great in Opera 7.20 which is generally more
finicky.


Shame on Opera for supporting document.all.

What browser are you using?


Exactly my point. If the code were written to W3C standards, you wouldn't
need to ask that question. For what it's worth, I use:
Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.5) Gecko/20031007
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 19 '05 #7

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

Similar topics

1
by: Darren Dale | last post by:
Hello, I use Python for interactive data analysis, coming recently from Matlab. One thing I am missing is a variable browser. The problem with vars() is that it lists everything loaded in the...
0
by: flat_ross | last post by:
I have a service running under SYSTEM in XP that needs to notify the interactive user. From all of my newsgroup reading it looks like it is no longer acceptable to set the service as "Interact...
2
by: Allan Adler | last post by:
In C, I can execute system("gs gleep.ps"); and have C run a ghostscript program gleep.ps, which might ask for user input and, when it gets it, take some actions and report back to the C...
6
by: Jerry Spence1 | last post by:
Why doesn't the following work in my ASP program? I have imported ADOX I am trying to create a temporary database on the user's PC. The example is taken from Microsoft. Dim cat As Catalog =...
2
by: WJ | last post by:
I have three ASPX pages: 1. "WebForm1.aspx" is interactive, responsible for calling a web site (https://www.payMe.com) with $$$. It is working fine. 2. "WebForm2.aspx" is non-interactive, a...
3
by: Lubomir | last post by:
Hi, I read that interactive windows services will not be allowed to run under Wista. I would like to ask what exactly is the interactive service. It is supposed to be a service that communicates...
5
by: outstretchedarm | last post by:
I'm extremely new to javascript and to programming in general. I am trying to create an interactive table. I have already created the table with constants, in the key of C (it is for music). ...
2
by: daokfella | last post by:
I'm hoping someone could get me started on this. I have an ASP.Net website that collects information from users for my organization. I now have a large SQL Server database that I'd like to convert...
3
by: psbasha | last post by:
Hi, I would like to call the same aplication executable with and without Graphical User Interface. Requirement: With Tkinter User interface,user can give the inputs to run the application (...
4
by: Philipp.Weissenbacher | last post by:
Hi all! I wrote the following as a test case for a menu based programme: #include <iostream> #include <cstring> using namespace std; #define cls system("cls") const int SIZE = 10;
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...
0
by: jack2019x | last post by:
hello, Is there code or static lib for hook swapchain present? I wanna hook dxgi swapchain present for dx11 and dx9.

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.