c# - Display left <TD> to the right of right <TD> -


i've got table 2 tablecells:

<table> <tr> <td>[left]</td> <td>[right]</td> </tr> </table> 

this simplification of control i'm using (system.web.ui.webcontrols.wizard).

what i'm trying accomplish display left column on right this:

[right] [left] 

i've tried jquery , works should can see screen flicker when moving content. because of page renders executes jquery.

i've tried influencing rendering of control lose eventhandlers menu or content (depending on cell move)

my question:

is possible use css accomplish result need?

or

how can manipulate wizard control menu on right side.

i suggest use asp.net control adapter. article may understand how works : asp.net 2.0 control adapter architecture.

the key idea override standard rendering of wizard control custom render method of own. able virtually produce output. can bit tricky in case though.

[edit] according comment, able (if lucky) rely on asp.net css control adapter shipped microsoft. original target of these adapters generate clean w3c compliant html (using div) instead of standard rendering (based on tables). if wizard control produces table, can maybe use combination between css adapters , custom css file can play "float:left" , "float: right" styles swap columns. didn't try, merits looked at.


Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -