Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default Xforms Extension

    Hi All, Is there any dreamweaver extension for xforms. I want to design forms
    using dream weaver and view the code as xforms instead of html in the 'Code
    View' . If there is no extension how can i build mine? for example when
    insert a combobox the code should look like this <xforms:select1
    appearance='minimal'> <xforms:label>select1</xforms:label> </xforms:select1>
    instead of <select name='select'> </select> Thanks

    <xforms:select1 appearance="minimal">
    <xforms:label>select1</xforms:label>
    </xforms:select1>

    instead of

    <select name="select">
    </select>

    Suzan Guest

  2. Similar Questions and Discussions

    1. XFORMS
      Hi, When specifying the skin='none' in the cfform how can i see the generated XML (XFORMS)? <cfform name='testXForm' format='XML' skin='none'> ...
    2. XForms ?
      Is it possible to use the cfform tag to proccess XForm XML written outside of coldFusion?
    3. Login using XForms
      I'm having problems with a login page. Every time I leave the protected page and return it makes me re-login. This did not happen with flash or html...
    4. xforms and xsl
      Hi, I was wondering it there a way to view the XML that the cfforms tags generate prior to being transformed by the XSL file that is automatically...
    5. Lyx and xforms!!
      Hi all, I have this problem: I have Redhat 7.3 installed and i'm trying to install Lyx. I downloaded lyx-1.3.2.tar.gz e I launched ./configure...
  3. #2

    Default Re: Xforms Extension

    Suzan wrote:
    > Hi All, Is there any dreamweaver extension for xforms. I want to design forms
    > using dream weaver and view the code as xforms instead of html in the 'Code
    > View' . If there is no extension how can i build mine?
    If you want ot insert that code, probably the easiet way would be to
    make snippets to insert the "pure" code into the page.

    Beyond that, you coudl also do an Object on the insert bar, that's
    pretty easy to do. Read the Extending docs for a basic example fo how to
    do that.

    If you're looking for a visual representation of the XForms code, then
    you'll need to look at doing a Data Translator (common called a
    translator) to convert the code in the page into a visual representation.

    Just curious: what type of project are you using XForms code for?

    --
    Danilo Celic
    | Extending Knowledge Daily : [url]http://CommunityMX.com/[/url]
    | Team Macromedia for Dreamweaver : [url]http://macromedia.com/go/team/[/url]
    danilocelic *TMM* Guest

  4. #3

    Default Re: Xforms Extension

    Thanks for the answer, i am going to build a form builder using dream weaver and xforms.

    Do you have a tutorial for building extensions and using the " Data Translator "

    Thanks
    Suzan Guest

  5. #4

    Default Re: Xforms Extension

    Suzan wrote:
    > Thanks for the answer, i am going to build a form builder using dream weaver and xforms.
    >
    > Do you have a tutorial for building extensions and using the " Data Translator "
    No I do not.

    However, the documentation for building one was pretty straight forward
    and I had a basic one working in about 20 minutes by just copy and
    pasting the example they already had and modifying a few lines of code.

    --
    Danilo Celic
    | Extending Knowledge, Daily [url]http://CommunityMX.com/[/url]
    danilocelic *TMM* Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139