Posts

Showing posts from December 25, 2018

flutter capture the widget to image and then create PDF file to printer

Image
0 My flutter app captures the widget to image and then creates PDF file to printer, but it shows ridiculous result as below picture. Let me know if you have any better method to print Chinese character and qr image to a receipt (bluetooth printer with paper width 75mm) Here with the widget: RepaintBoundary( key: _renderObjectKey, child: ListView( children: <Widget>[ Form( key: tableNumberFormKey, child: ListTile( title: TextFormField( initialValue: "", style: TextStyle(fontSize: 48.0), textAlign: TextAlign.center, maxLength: 4, keyboardType: TextInputType.phone, onSaved: (val) => inputTableNumber = val.toString(), validator: (val) => val.isEmpty ? '' : null, decoration: new InputDecoration( labelText: "輸入檯號", hintText: "例如:12", ), ), ), ), FlatButton( textColor: Colors.blueAccent, child: Text( "列印 QR CODE", style: TextStyle(fontWeight: FontWeight.w500, fontSize: 20.0), ), color: Colors

Wahlen 1968

Image
In diesem Artikel oder Abschnitt fehlen noch folgende wichtige Informationen: Es handelt sich z. Z. erst um eine kleine Auswahl der tatsächlich stattgefundenen Wahlen. Hilf der Wikipedia, indem du sie recherchierst und einfügst. ◄◄ | ◄ | 1964 | 1965 | 1966 | 1967 |  Wahlen 1968  | 1969 | 1970 | 1971 | 1972 | ► | ►► Weitere Ereignisse Folgende Wahlen fanden 1968 statt: Inhaltsverzeichnis 1 Afrika 1.1 Ägypten 1.2 Äquatorialguinea 1.3 Dahomey 1.4 Guinea 1.5 Sambia 2 Amerika 2.1 Kanada 2.2 USA 3 Asien 3.1 Singapur 3.2 Türkei 4 Europa 4.1 Deutschland 4.2 Österreich 4.3 Schweden 5 Weblinks Afrika | Ägypten | Referendum in der Vereinigten Arabischen Republik 1968 Äquatorialguinea | Präsidentschaftswahl in Äquatorialguinea 1968 Dahomey | 1. Präsidentschaftswahl in Dahomey 1968 2. Präsidentschaftswahl in Dahomey 1968 (wg. Annullierung der ersten Wahl) Verfassungsreferendum in Dahomey 1968 Guinea | Präsidentschaftswahl in Guinea 1968 Sambia | Wahl in Sambia 1968 Amerika

Why a function is not calling by using v-on click in vue js?

Image
0 My code is var div = "<div class="liveContent" id=""+this.id+"" refid=""+refresh+"" v-onclick="showWindow(this)"><table><tr><td style="padding-left:10px;"><b>"+this.animal+"</b><br>"+this.time+"<br>"+this.username+"</td></tr></table></div>"; $("#liveScroll").prepend(div); And I have a function in methods as methods: showWindow: function(e) alert(true); , When I click showWindow is not calling. My html code is <div id="liveScroll" class="liveScroll"></div> Please help me to have a solution. Using this I am able to display the data but when I click on data nothing happens javascript vue.js vuejs2 vue-component share | improve this question edited Nov 11 at 12:58 asked Nov 11 at 12:54 coder 119 1 15