Form doldurma işlemi

Merhaba form doldurma işlemi yaparken aynı anda neden iki farklı sütünü seçip , bu farklı sütunlara farklı metinler giremiyoruz. bu konuda yardımcı olabilir misiniz

Welcome to the forum @onay.bn!

It is not clear what is wrong in your case. If you could share your snippet and screenshot of the form that would help to understand the problem you're facing.

örneğin bir sayfalık form doldurmak istiyoruz.

hastalık, tanı : 1.sütun

tedavi yöntemi : 2.sütun

1 ve 2 sütunu aynı anda bir kısa yol ile doldurmak istiyorum , ama yapamıyorum bu işlemi nasıl yapabileceğimi sormaktayım. ekran görüntüsü atmayı denedim ancak sistemde bir sorun var sanırım gönderemiyorum

If you can switch to second column by pressing tab button, then snippet below can work for you:

{formtext: name=column 1; default=hastalık, tanı}{key: tab}{formtext: name=column 2; default=tedavi yöntemi}

It might be possible that you can switch to second column by pressing tab more than once, in that case you can add as many {key: tab} commands as necessary.

Dostum teşekkür ederim ancak bu bana yardımcı olmadı . Sanırım ben doğru bir şekilde anlatamadım, formun yan tarafından ekstra bir ekran çıkmasını istemiyorum doğrudan yazdığım metinlerin ilgili bölümlere işlenmesini istiyorum. Yani kısaca hastalık için oluşturduğum kısayol metnin hastalık bölümüne , tedavi için oluşturduğum kısayolun tedavi bölümüne işlenmesini istiyordum

Sure, you can remove formtext commands and place your text directly

hastalık, tanı{key: tab}tedavi yöntemi

teşekkür ederim.

Bir konuda daha desteğinizi rica ediyorum.

Örnek formun bir bölümünde konu seçiniz : adı altında birden fazla başlığın olduğu seçeneklerden birini seçmemiz gerekiyor bu işlemi nasıl yapabilirim

If I understand you correctly, you have a dropdown with some values and you want to automatically select one of the options?

In that case you could use tab to focus on dropdown and then several downarrow to select right option and then enter key to select the option. Example snippet below:

{key: tab}
{key: downarrow}
{key: enter}

evet doğru peki downarrow dan sonra istediğimiz seçeneği nasıl işaretleyebiliriz çünkü şu anda rastgele işaretleme yapıyor

Are the options in dropdown always in same order? Snippet has to select first or second option depending if anything selected.

One more approach can be used if search is available on dropdown, is that the case?

bu sorunu da çözdüm çok teşekkür ederim.

sadece tek sorun kaldı ilk yorumumda bahsettiğim farklı metin bölümlerinden birincisine istediğim metni yapıştırabiliyorum ikinci metin alanını click ile seçiyorum fakat buraya otomatik olarak yazdıramıyorum seçtiğim ikinci bölüme nasıl metin ekleyebilirim

It is possible to creation multiple snippets and trigger them in different text areas.
Alternatively you could use the approach with moving between text areas using {key: tab}, that way it happens automatically and you can paste text in a single snippet.

Çok teşekkür ederim :slight_smile: